home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / rokv203a.zip / ROK.ZIP / SAMPLE.BAT < prev    next >
DOS Batch File  |  1997-06-22  |  1KB  |  26 lines

  1. REM ** SAMPLE BATCH FILE FOR SINGLE-LINE BBS **
  2.  
  3. @ECHO OFF                       - No display what is happening.
  4. <drive>:                        - Change to the BBS Drive.
  5. CD\<ROK_Dir>                    - Change Dir to the ROK Directory.
  6. NOW_OFF.EXE                     - Execute a program to make all players in ROK
  7.                                   *NOT* online.
  8. CALL RUNROK.BAT 1 /p<Path>      - Run ROK on node #1, the /p<path> is the
  9.                                   path to your dropfile, without the trailing
  10.                                   backslash. (IE, RUNROK.BAT 1 /pc:\bbs - If
  11.                                   you don't want to use the /p parameter you
  12.                                   can copy the dropfile into the ROK Directory)
  13. CD\<BBS_Dir>                    - Return to the BBS Directory.
  14. EXIT                            - Exit back to the BBS.
  15.  
  16. REM ** SAMPLE BATCH FILE FOR MUTLI-NODE BBS **
  17.  
  18. @ECHO OFF                       - No display what is happening.
  19. <drive>:                        - Change to the BBS Drive.
  20. CD\<ROK_Dir>                    - Change Dir to the ROK Directory.
  21. CALL RUNROK.BAT *               - Run ROK on a "*" for the node number
  22.                                   (consult your BBS Documentation for info on
  23.                                   how to pass node numbers to command lines).
  24. CD\<BBS_Dir>                    - Return to the BBS Directory.
  25. EXIT                            - Exit back to the BBS.
  26.